home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / prog / mui / muibuilder / mb / e / localized_demogencodee / gui.e < prev    next >
Text File  |  1995-02-05  |  7KB  |  196 lines

  1. OPT MODULE
  2. OPT PREPROCESS
  3.  
  4.  
  5. ->/////////////////////////////////////////////////////////////////////////////
  6. ->////////////////////////////////////////////////////// External modules /////
  7. ->/////////////////////////////////////////////////////////////////////////////
  8. MODULE 'muimaster' , 'libraries/mui'
  9. MODULE 'tools/boopsi'
  10. MODULE 'utility/tagitem' , 'utility/hooks'
  11.  
  12. MODULE '*Locale'
  13.  
  14.  
  15. ->/////////////////////////////////////////////////////////////////////////////
  16. ->//////////////////////////////////////////////////// Object definitions /////
  17. ->/////////////////////////////////////////////////////////////////////////////
  18. EXPORT OBJECT app_arexx
  19.     commands :    PTR TO mui_command
  20.     error    :    hook
  21. ENDOBJECT
  22.  
  23. EXPORT OBJECT app_display
  24.     button_pressed          :    hook
  25. ENDOBJECT
  26.  
  27. EXPORT OBJECT app_obj
  28.     app                     :    PTR TO LONG
  29.     wi_the_window           :    PTR TO LONG
  30.     bt_put_constant_string  :    PTR TO LONG
  31.     bt_put_variable         :    PTR TO LONG
  32.     bt_return_id            :    PTR TO LONG
  33.     bt_call_hook            :    PTR TO LONG
  34.     tx_result               :    PTR TO LONG
  35.     bt_quit                 :    PTR TO LONG
  36.     stR_TX_result           :    PTR TO CHAR
  37. ENDOBJECT
  38.  
  39.  
  40. ->/////////////////////////////////////////////////////////////////////////////
  41. ->////////////////////////////////////////////////// Constant definitions /////
  42. ->/////////////////////////////////////////////////////////////////////////////
  43. EXPORT ENUM
  44.     ID_BUTTON_PRESSED = 1
  45.  
  46.  
  47. ->/////////////////////////////////////////////////////////////////////////////
  48. ->/////////////////////////////////////////// Global variable definitions /////
  49. ->/////////////////////////////////////////////////////////////////////////////
  50. EXPORT DEF string_var
  51.  
  52. EXPORT DEF cat : PTR TO catalog_DemoGenCodeE
  53.  
  54.  
  55. ->/////////////////////////////////////////////////////////////////////////////
  56. ->/////////// Creates one instance of one object or the whole application /////
  57. ->/////////////////////////////////////////////////////////////////////////////
  58. PROC create( display : PTR TO app_display ,
  59.              icon  = NIL ,
  60.              arexx = NIL : PTR TO app_arexx ,
  61.              menu  = NIL ) OF app_obj
  62.  
  63.     DEF grOUP_ROOT_0C , gr_grp_0 , gr_grp_1 , la_result , gr_grp_2
  64.  
  65.     self.stR_TX_result           := cat.msg_TX_result.getstr()
  66.  
  67.     self.bt_put_constant_string := SimpleButton( getMBstring( cat.msg_BT_put_constant_string.getstr() ) )
  68.  
  69.     self.bt_put_variable := SimpleButton( getMBstring( cat.msg_BT_put_variable.getstr() ) )
  70.  
  71.     self.bt_return_id := SimpleButton( getMBstring( cat.msg_BT_return_id.getstr() ) )
  72.  
  73.     self.bt_call_hook := SimpleButton( getMBstring( cat.msg_BT_call_hook.getstr() ) )
  74.  
  75.     la_result := Label( getMBstring( cat.msg_LA_result.getstr() ) )
  76.  
  77.     self.tx_result := TextObject ,
  78.         MUIA_HelpNode , 'TX_result' ,
  79.         MUIA_Background , MUII_TextBack ,
  80.         MUIA_Frame , MUIV_Frame_Text ,
  81.         MUIA_Text_Contents , self.stR_TX_result ,
  82.         MUIA_Text_PreParse , '\el' ,
  83.         MUIA_Text_SetMin , MUI_TRUE ,
  84.     End
  85.  
  86.     gr_grp_1 := GroupObject ,
  87.         MUIA_Group_Horiz , MUI_TRUE ,
  88.         Child , la_result ,
  89.         Child , self.tx_result ,
  90.     End
  91.  
  92.     gr_grp_0 := GroupObject ,
  93.         MUIA_Frame , MUIV_Frame_Group ,
  94.         MUIA_FrameTitle , getMBstring( cat.msg_GR_grp_0Title.getstr() ) ,
  95.         Child , self.bt_put_constant_string ,
  96.         Child , self.bt_put_variable ,
  97.         Child , self.bt_return_id ,
  98.         Child , self.bt_call_hook ,
  99.         Child , gr_grp_1 ,
  100.     End
  101.  
  102.     self.bt_quit := SimpleButton( getMBstring( cat.msg_BT_quit.getstr() ) )
  103.  
  104.     gr_grp_2 := GroupObject ,
  105.         Child , self.bt_quit ,
  106.     End
  107.  
  108.     grOUP_ROOT_0C := GroupObject ,
  109.         Child , gr_grp_0 ,
  110.         Child , gr_grp_2 ,
  111.     End
  112.  
  113.     self.wi_the_window := WindowObject ,
  114.         MUIA_Window_Title , getMBstring( cat.msg_WI_the_window.getstr() ) ,
  115.         MUIA_HelpNode , 'WI_the_window' ,
  116.         MUIA_Window_ID , "0WIN" ,
  117.         WindowContents , grOUP_ROOT_0C ,
  118.     End
  119.  
  120.     self.app := ApplicationObject ,
  121.         ( IF icon THEN MUIA_Application_DiskObject ELSE TAG_IGNORE ) , icon ,
  122.         ( IF arexx THEN MUIA_Application_Commands ELSE TAG_IGNORE ) , ( IF arexx THEN arexx.commands ELSE NIL ) ,
  123.         ( IF arexx THEN MUIA_Application_RexxHook ELSE TAG_IGNORE ) , ( IF arexx THEN arexx.error ELSE NIL ) ,
  124.         ( IF menu THEN MUIA_Application_Menu ELSE TAG_IGNORE ) , menu ,
  125.         MUIA_Application_Author , 'Lionel Vintenat' ,
  126.         MUIA_Application_Base , 'DEMOGENCODEE' ,
  127.         MUIA_Application_Title , 'DemoGenCodeE' ,
  128.         MUIA_Application_Version , '$VER: DemoGenCodeE 1.0 (01.09.94)' ,
  129.         MUIA_Application_Copyright , getMBstring( cat.msg_AppCopyright.getstr() ) ,
  130.         MUIA_Application_Description , getMBstring( cat.msg_AppDescription.getstr() ) ,
  131.         SubWindow , self.wi_the_window ,
  132.     End
  133.  
  134. ENDPROC self.app
  135.  
  136.  
  137. ->/////////////////////////////////////////////////////////////////////////////
  138. ->////////////////////////// Disposes the object or the whole application /////
  139. ->/////////////////////////////////////////////////////////////////////////////
  140. PROC dispose() OF app_obj IS ( IF self.app THEN Mui_DisposeObject( self.app ) ELSE NIL )
  141.  
  142.  
  143. ->/////////////////////////////////////////////////////////////////////////////
  144. ->/////////////////////// Initializes all the notifications of one object /////
  145. ->/////////////////////////////////////////// or of the whole application /////
  146. ->/////////////////////////////////////////////////////////////////////////////
  147. PROC init_notifications( display : PTR TO app_display ) OF app_obj
  148.  
  149.     domethod( self.bt_put_constant_string , [
  150.         MUIM_Notify , MUIA_Pressed , FALSE ,
  151.         self.tx_result ,
  152.         3 ,
  153.         MUIM_Set , MUIA_Text_Contents , getMBstring( cat.msg_BT_put_constant_stringNotify0.getstr() ) ] )
  154.  
  155.     domethod( self.bt_put_variable , [
  156.         MUIM_Notify , MUIA_Pressed , FALSE ,
  157.         self.tx_result ,
  158.         3 ,
  159.         MUIM_Set , MUIA_Text_Contents , string_var ] )
  160.  
  161.     domethod( self.bt_return_id , [
  162.         MUIM_Notify , MUIA_Pressed , FALSE ,
  163.         self.app ,
  164.         2 ,
  165.         MUIM_Application_ReturnID , ID_BUTTON_PRESSED ] )
  166.  
  167.     domethod( self.bt_call_hook , [
  168.         MUIM_Notify , MUIA_Pressed , FALSE ,
  169.         self.app ,
  170.         2 ,
  171.         MUIM_CallHook , display.button_pressed ] )
  172.  
  173.     domethod( self.bt_quit , [
  174.         MUIM_Notify , MUIA_Pressed , FALSE ,
  175.         self.app ,
  176.         2 ,
  177.         MUIM_Application_ReturnID , MUIV_Application_ReturnID_Quit ] )
  178.  
  179.     domethod( self.wi_the_window , [
  180.         MUIM_Window_SetCycleChain , self.bt_put_constant_string ,
  181.         self.bt_put_variable ,
  182.         self.bt_return_id ,
  183.         self.bt_call_hook ,
  184.         self.bt_quit ,
  185.         0 ] )
  186.  
  187.     set( self.wi_the_window ,MUIA_Window_Open , MUI_TRUE )
  188.  
  189. ENDPROC
  190.  
  191.  
  192. ->/////////////////////////////////////////////////////////////////////////////
  193. ->//////////// Special GetString() function for MUIBuilder generated code /////
  194. ->/////////////////////////////////////////////////////////////////////////////
  195. PROC getMBstring( local_string : PTR TO CHAR ) RETURN ( IF local_string[ 1 ] = "\0" THEN ( local_string + 2 ) ELSE local_string )
  196.